/* --- GLOBAL STYLES --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+US+Modern:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Niconne&family=Playwrite+US+Modern:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #ffffff;
  overflow-x: hidden;
}

/* --- HERO SECTION (FIXED FOR MOBILE) --- */
.hero {
  min-height: 100vh;
  padding: 9px 20px 60px 20px; /* Added padding for mobile breathing room */
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
              url("background.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.logo {
  width: clamp(150px, 30vw, 220px); /* Logo scales with screen */
  margin-bottom: 25px;
}

/* ADJUSTED HEADING FOR MOBILE */
.hero-content h1 {
  font-size: clamp(1.75rem, 8vw, 3.5rem); /* Smaller base size for mobile */
  color: #0b2a5b;
  font-weight: 800;
  line-height: 1.2; /* Better spacing between lines */
  margin-bottom: 10px;
}

.hero-content p {
  color: goldenrod;
  letter-spacing: clamp(1px, 2vw, 3px);
  font-weight: 700;
  font-size: clamp(0.85rem, 4vw, 1.1rem);
  text-transform: uppercase;
  margin-top: 15px;
}

/* --- LUXURY BOOKING CARDS --- */
.booking-section {
  padding: 60px 0;
  background-color: #fcfcfc;
}

.luxury-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(11, 42, 91, 0.08);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  border: 1px solid #f0f0f0;
  margin-bottom: 20px;
}

.luxury-card:hover {
  transform: translateY(-10px);
  border-color: goldenrod;
}

.luxury-img-wrapper {
  position: relative;
  width: 100%;
  height: 250px; 
  overflow: hidden;
}

.luxury-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.luxury-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #0b2a5b;
  color: white;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.luxury-content {
  padding: 25px;
}

.luxury-label {
  color: goldenrod;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.luxury-title {
  color: #0b2a5b;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* --- HIGH-END BUTTONS --- */
.luxury-btn {
  background: linear-gradient(45deg, #daa520, #ffd700);
  color: #0b2a5b !important;
  border: none;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.luxury-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
}

/* --- FORMS (MODALS) --- */
.luxury-modal {
  background: white;
  border-radius: 20px;
  border: 2px solid goldenrod;
  color: #0b2a5b;
}

.luxury-input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: white;
  border: 1px solid goldenrod;
  border-radius: 10px;
  color: black;
}

/* --- FOOTER --- */
.site-footer {
  background: #ffffff;
  padding: 20px 0;
  border-top: 1px solid #eee;
  color: #0b2a5b;
}

/* --- MOBILE SPECIFIC FIXES --- */
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.8rem; /* Forces a readable size on very small screens */
    padding: 0 10px;
  }
  
  .hero-content p {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  .luxury-img-wrapper {
    height: 200px; /* Shorter images for mobile view */
  }
}




/* NAVBAR */
.navbar{
    background-color:#0b2a5b;
}
.toggle-heading{
    color: white;
}
.nav-link.nav-button{
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin: 3px;
}
.nav-link.nav-button:hover{
    text-decoration: underline;
}
.nav-link.nav-button.active{
    color: goldenrod;
    text-decoration: underline;

}
.nav-link.nav-button-2{
    color: white;
    font-weight: 500;
    border: 3px solid goldenrod;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    background-color: goldenrod;
}
.nav-link.nav-button-2:hover{
    color: goldenrod;
    border: 3px solid goldenrod;
    background-color: white;
}
.navbar-logo{
    color: white;
    font-family: "Poppins",sans-serif;
    font-weight: 500;
}
.brand span {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.nav-links li a:hover {
  color: #f5c46b;
}
.logo {
  width: 220px;
  max-width: 80%;
  margin-bottom: 20px;
}


.hero-content p {
  font-size: 18px;
  color: goldenrod;
  letter-spacing: 2px;
}
.offcanvas-body{
    color: #0b2a5b;
}
.offcanvas-toggle{
    background-color: #0b2a5b;
}
.offcanvas.show .nav-link{
    color: goldenrod;
}
.offcanvas.show .offcanvas-title {
  color:goldenrod;
}
.navbar-toggler-icon{
  filter: invert(72%) sepia(50%) saturate(600%) hue-rotate(5deg);
}
.offcanvas.show .nav-link{
    color: #0b2a5b;
}
.offcanvas.show .offcanvas-title {
  color:white;
}
.marquee-section {
    position: relative;
    padding: 18px 0;
    overflow: hidden;
    font-family: "Inter", "Montserrat", system-ui, sans-serif;
    margin-top: 60px;
}

/* Top & Bottom Lines */
.marquee-section::before,
.marquee-section::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(218, 165, 32, 0.7),
        transparent
    );
}

.marquee-section::before { top: 0; }
.marquee-section::after { bottom: 0; }

/* Container */
.marquee-container {
    overflow: hidden;
}

/* Track (Moves) */
.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeMove 28s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

/* Content Blocks */
.marquee-content {
    display: flex;
    align-items: center;
    gap: 56px;
    padding-right: 56px;
}

/* Items */
.marquee-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    color: #0b2a5b;
    white-space: nowrap;
}

/* Logo */
.marquee-logo {
    width: 18px;
    opacity: 0.85;
}

/* Animation */
@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .marquee-item {
        font-size: 14px;
    }

    .marquee-logo {
        width: 14px;
    }
    .marquee-section{
      margin-top: 70px;
    }
}
/* --- UPDATED LOGO CONTAINER --- */
.logo-container {
  position: relative;
  /* Flex makes it easy to center the internal image */
  display: flex;
  justify-content: center;
  align-items: center;
  
  /* Centering the container itself */
  margin: 0 auto 30px auto; 
  
  /* Size constraints */
  width: fit-content;
  max-width: 100%; 
  overflow: hidden;
  
  /* Animation */
  opacity: 0;
  animation: zoomIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.logo {
  /* Increased size for better visibility */
  width: clamp(200px, 60vw, 320px); 
  height: auto;
  display: block;
}

/* --- THE LIGHT STREAK --- */
.logo-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 65%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  /* Runs once after zoom finishes */
  animation: lightPass 1s ease-in-out 1.2s 1 forwards;
}

/* --- ANIMATIONS --- */
@keyframes zoomIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes lightPass {
  from { left: -150%; }
  to { left: 150%; }
}

/* --- ENSURE PARENT IS CENTERED --- */
.hero-content {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; /* Forces all children to the center line */
}
/* AUTO MOVING IMAGE STRIP */
.auto-gallery {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  background: transparent;
  margin-top: -20px; 
}

.auto-track {
  display: flex;
   gap: 60px;
  width: max-content;
  animation: scrollImages 60s linear infinite;
}

.auto-track img {
  height: 320px;   /* increased size */
  width: auto;
  border-radius: 18px;
  object-fit: cover;
}
/* hover effect */
.auto-track img:hover {
  transform: scale(1.05);
}

/* ANIMATION */
@keyframes scrollImages {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .auto-track img {
    height: 260px;
  }
}
@media (max-width: 576px) {
  .auto-gallery {
    margin-top: -20px;  /* reduce gap only on mobile */
  }
}


.auto-gallery:hover .auto-track {
  animation-play-state: paused;
}
.quote h2 {
  font-size: 40px;
  color: #0b2a5b;
  font-weight: 600;
  line-height: 1.2; /* Better spacing between lines */
  margin-bottom: 10px;
  margin-top: -19px;
  text-align: center;
  font-family : "Pacifico", cursive;
  
}
@media (max-width: 576px) {
  .quote h2 {
    font-size: 1.1rem; /* Forces a readable size on very small screens */
    padding: 0 10px;
    margin-top: -90px;
    margin-bottom: 10px;
  }
}

/* GALLERY WITH LINES */
.auto-gallery {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
  background: transparent;
  margin-top: 10px;
}

/* TOP LINE */
.auto-gallery::before,
.auto-gallery::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;

  background: linear-gradient(
  90deg,
  transparent,
  rgba(218, 165, 32, 0.9),
  transparent
);
box-shadow: 0 0 8px rgba(218, 165, 32, 0.6);
}

/* Top */
.auto-gallery::before {
  top: 0;
}

/* Bottom */
.auto-gallery::after {
  bottom: 0;
}

@media (max-width: 576px) {
  .auto-gallery::before,
  .auto-gallery::after {
    height: 1px;
  }
}





